Hi lo game SB.txt b+ 2020-03-07
[
	n r int(rnd * 100) + 1 
	n c 0
	[
		? g Guess my number from 1 to 100, (0 quits)
		i  g >= 1
			n c c + 1
			i  g >  r
				. Too High!
			e
				i  g < r
					. Too Low!
				e
					. You guessed in c guesses!
					.
					x
				f
			f
		e
			. You signaled quit, goodbye!
			z
		f
	]	
]